#aboutImage {
    background-image: url("../../src/images/plumb.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body #aboutLicense {
    height: 500px;
    /* background-color: var(--bg-color2); */
    background-color: rgba(85, 85, 85, 0.8);
    color: white;
    padding: 0 150px;
    display: flex;
    flex-direction: row;
}

body #aboutLicense #info {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

body #aboutLicense #info #heading {
    font-family: var(--H-font);
    font-size: 2.5rem;
    padding-bottom: 30px;
    color: white;
    text-align: center;
}

body #aboutLicense #info #text {
    text-align: center;
    font-family: var(--t-font1);
    font-size: 1rem;
}

@media (max-width: 1100px) {
    body #aboutLicense #info #heading {
        font-size: 2rem;
    }
    body #aboutLicense #info #text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    body #aboutLicense #info #heading {
        font-size: 1.7rem;
    }
    body #aboutLicense #info #text {
        font-size: 0.7rem;
    }
    body #aboutLicense {
        padding: 0 90px !important;
        height: 350px;
    }
}

@media (max-width: 700px) {
    body #aboutLicense #info #heading {
        font-size: 1.7rem;
    }
    body #aboutLicense #info #text {
        font-size: 0.7rem;
    }
    body #aboutLicense {
        padding: 0 15px !important;
        height: 400px;
    }
}